home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / wtj208.zip / ZEMPEL / SOURCE / UT32 / MAKEFILE next >
Text File  |  1993-04-30  |  583b  |  29 lines

  1. !include <ntwin32.mak>
  2.  
  3.  
  4. all: ut32.dll
  5.  
  6. ut32.obj: ut32.c
  7.     $(cc)  $(cflags) $(cvarsdll) ut32.c
  8.  
  9. ut32.lib ut32.exp :  ut32.def
  10.     $(implib) -machine:$(CPU)  \
  11.     -def:ut32.def     \
  12. !IF "$(CPU)" == "i386"
  13.     ut32.obj           \
  14. !ENDIF
  15.     -out:ut32.lib     \
  16.  
  17. ut32.dll: ut32.obj ut32.def ut32.exp
  18.     $(link) $(linkdebug) /verbose             \
  19.     -base:0x1C000000     \
  20.     -dll                 \
  21.     -entry:DllInit  \
  22.     -machine:i386       \
  23.     -out:ut32.dll     \
  24.     -subsystem:windows   \
  25.     ut32.obj ut32.exp $(guilibsdll) w32sut32.lib
  26.  
  27.  
  28.  
  29.